home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-05-02 | 1.5 KB | 81 lines | [TEXT/MPS ] |
- /*
- File: NetCDevInstall.r
-
- Contains: Installer scripts for the network CDev
-
- Copyright: © 1991 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __NETCDEVINSTALL__
- #define __NETCDEVINSTALL__
-
- #ifndef __APPLETALKCOMMON__
- #include "AppleTalkCommon.r"
- #endif
-
- #define srcNetCDev ATBase+40
- #define tgtNetCDev ATBase+41
- #define NPakNetCDev ATBase+42
-
- /**********************************************************************
- ** Source Files
- ***********************************************************************/
-
- resource 'infs' (srcNetCdev)
- {
- 'cdev', 'atdv',
- 0x01,
- noSearchForFile,
- TypeCrMustMatch,
- AtlkFolder":Network"
- };
-
- /**********************************************************************
- ** Target Files
- ***********************************************************************/
-
- resource 'infs' (tgtNetCdev)
- {
- 'cdev', 'atdv',
- 0x00,
- noSearchForFile,
- TypeCrMustMatch,
- "special-ctrl:Network"
- };
-
- resource 'infa' (tgtNetCdev)
- {
- format0
- {
- StdLeaveNewerCopy,
-
- tgtNetCdev,
- srcNetCdev,
- 0, /* atom size */
- "Network CDEV" /* Atom Name/Description */
- };
- };
-
- /**********************************************************************
- ** Packages
- ***********************************************************************/
-
- resource 'inpk' (NPakNetCDev)
- {
- format0
- {
- notShowsOnCustom,
- notRemovable,
- dontForceRestart,
- 0, /* ICMT ID */
- 0, /* Package size */
- "Network CDEV",
- {
- 'infa', tgtNetCDev;
- }
- }
- };
-
- #endif
-